home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / gnu / ms-0_06.lha / xms-0.06 / Imakefile < prev    next >
Makefile  |  1991-11-12  |  732b  |  28 lines

  1. # Imakefile for MandelSpawn
  2.  
  3. /* Check if there is a SimpleMenu widget.  SaberC awareness */
  4. /* implies X11R4 which implies the existence of the */
  5. /* SimpleMenu widget.  There must be an easier way... */
  6. #ifdef HasSaberC
  7. /* this is X11R4 */
  8. R4_DEFINES = -DR4 -DMENU -DLABEL
  9. MENUSRC = menu.c label.c
  10. MENUOBJ = menu.o label.o
  11. DEPLIBS = XawClientDepLibs
  12. LOCAL_LIBRARIES = XawClientLibs
  13. #else
  14. /* this is X11R2 or X11R3 */
  15. DEPLIBS = $(DEPXTOOLLIB) $(DEPXLIB)
  16. LOCAL_LIBRARIES =  $(XTOOLLIB) $(XLIB)
  17. #endif
  18.  
  19. # CDEBUGFLAGS = -g -Bstatic
  20. # CDEBUGFLAGS = -g
  21.  
  22. DEFINES = -DXMS $(R4_DEFINES)
  23. SYS_LIBRARIES = -lm
  24. SRCS = main.c Ms.c Mama.c $(MENUSRC) work.c mspawn.c
  25. OBJS = main.o Ms.o Mama.o $(MENUOBJ) work.o mspawn.o
  26.  
  27. ComplexProgramTarget(xms)
  28.